home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 August / chip-cd_2004_08.zip / 08 / Internet / Shareaza 2.0 / Shareaza_2.0.0.0.exe / Schemas / VendorCache.xsd < prev    next >
Extensible Markup Language  |  2002-07-09  |  934b  |  28 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <schema targetNamespace="http://www.shareaza.com/schemas/VendorCache.xsd" version="1.0" xmlns="http://www.w3.org/2001/XMLSchema">
  4.  
  5.     <element name="vendorCache">
  6.         <complexType>
  7.             <sequence>
  8.                 <element name="vendor" type="vendorType" minOccurs="0" maxOccurs="unbounded"/>
  9.             </sequence>
  10.         </complexType>
  11.     </element>
  12.     
  13.     <complexType name="vendorType">
  14.         <attribute name="code" type="NMTOKEN" use="required"/>
  15.         <sequence>
  16.             <element name="title" type="string" minOccurs="1" maxOccurs="1"/>
  17.             <element name="link" type="uriReference" minOccurs="0" maxOccurs="1"/>
  18.             <element name="capability" type="capabilityType" minOccurs="0" maxOccurs="unbounded"/>
  19.         </sequence>
  20.     </complexType>
  21.     
  22.     <complexType name="capabilityType">
  23.         <attribute name="name" type="string" use="required"/>
  24.         <attribute name="value" type="boolean" default="true"/>
  25.     </complexType>
  26.     
  27. </schema>
  28.